home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.plaf.metal;
-
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
-
- final class MetalComboBoxUI$1 implements ActionListener {
- // $FF: synthetic field
- private final MetalComboBoxUI this$0;
-
- // $FF: synthetic method
- MetalComboBoxUI$1(MetalComboBoxUI var1) {
- this.this$0 = var1;
- }
-
- public void actionPerformed(ActionEvent var1) {
- if (this.this$0.metalGetComboBox().isEnabled()) {
- if (this.this$0.isPopupVisible()) {
- this.this$0.selectNextPossibleValue();
- } else {
- this.this$0.setPopupVisible(this.this$0.metalGetComboBox(), true);
- }
- }
-
- }
- }
-